home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / debian_DSA-059.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  62 lines

  1. # This script was automatically generated from the dsa-059
  2. # Debian Security Advisory
  3. # It is released under the Nessus Script Licence.
  4. # Advisory is copyright 1997-2004 Software in the Public Interest, Inc.
  5. # See http://www.debian.org/license
  6. # DSA2nasl Convertor is copyright 2004 Michel Arboi
  7.  
  8. if (! defined_func('bn_random')) exit(0);
  9.  
  10. desc = '
  11. Luki R. reported a bug in man-db: it did not handle nested calls of
  12. drop_effective_privs() and regain_effective_privs() correctly which
  13. would cause it to regain privileges too early. This could be abused
  14. to make man create files as user man.
  15.  
  16. This has been fixed in version 2.3.16-4, and we recommend that you 
  17. upgrade your man-db package immediately. If you use suidmanager you 
  18. can also use that to make sure man and mandb are not installed suid
  19. which protects you from this problem. This can be done with the
  20. following commands:
  21.  
  22.  
  23.    suidregister /usr/lib/man-db/man root root 0755
  24.    suidregister /usr/lib/man-db/mandb root root 0755
  25.  
  26.  
  27.     
  28. Of course even when using suidmanager an upgrade is still strongly 
  29. recommended.
  30.  
  31.  
  32.  
  33. Solution : http://www.debian.org/security/2001/dsa-059
  34. Risk factor : High';
  35.  
  36. if (description) {
  37.  script_id(14896);
  38.  script_version("$Revision: 1.4 $");
  39.  script_xref(name: "DSA", value: "059");
  40.  script_cve_id("CAN-2001-1331");
  41.  script_bugtraq_id(2720, 2815);
  42.  
  43.  script_description(english: desc);
  44.  script_copyright(english: "This script is (C) 2004 Michel Arboi");
  45.  script_name(english: "[DSA059] DSA-059-1 man-db");
  46.  script_category(ACT_GATHER_INFO);
  47.  script_family(english: "Debian Local Security Checks");
  48.  script_dependencies("ssh_get_info.nasl");
  49.  script_require_keys("Host/Debian/dpkg-l");
  50.  script_summary(english: "DSA-059-1 man-db");
  51.  exit(0);
  52. }
  53.  
  54. include("debian_package.inc");
  55.  
  56. w = 0;
  57. if (deb_check(prefix: 'man-db', release: '2.2', reference: '2.3.16-4')) {
  58.  w ++;
  59.  if (report_verbosity > 0) desc = strcat(desc, '\nThe package man-db is vulnerable in Debian 2.2.\nUpgrade to man-db_2.3.16-4\n');
  60. }
  61. if (w) { security_hole(port: 0, data: desc); }
  62.